Real-time Character Count


Exercise 1

Create a form with a text area for entering a message. Use JavaScript to display a character
count next to the text area that updates dynamically as the user types.

   
  const textArea = document.createElement('textarea');


  const liveCount = document.getElementById('livecount');
  const Tarea = document.getElementById('Tarea');
  
  
  function count(){
      liveCount.innerText = Tarea.value.length;
  }
  

Character Count : 0